home *** CD-ROM | disk | FTP | other *** search
- Path: erich.triumf.ca!bennett
- From: bennett@erich.triumf.ca (P.Bennett)
- Newsgroups: comp.lang.c
- Subject: Re: Turbo C linker errors
- Date: 16 Feb 1996 12:09 PST
- Organization: TRIUMF: Tri-University Meson Facility
- Distribution: world
- Message-ID: <16FEB199612090166@erich.triumf.ca>
- References: <4g2242$2ll@firebrick.mindspring.com>
- NNTP-Posting-Host: ftp.triumf.ca
- News-Software: VAX/VMS VNEWS 1.50
-
- In article <4g2242$2ll@firebrick.mindspring.com>, kbeaver@a.crl.com writes...
- >I am using Borland Turbo C++ v3.0 and I am receiving the following errors:
- >
- >"Linker error: Undefined symbol NWGETFILESERVERINFORMATION in module ..\prog\test.cpp"
- >-and-
- >"Linker error: Undefined symbol NWCALLSINIT in module ..\prog\test.cpp"
- >
- >I am just making a basic NetWare API call as seen below using the header file "nwcalls.h"
- >
- >#include <stdio.h>
- >#include <conio.h>
- >#include <nwcalls.h>
- >
-
- You probably have to add the netware library to your project, or otherwise tell
- the linker to search it. #include <nwcalls.h> just tells the compiler what the
- fucntions look like - it doesn't tell the linker where to find them.
-
- Peter Bennett VE7CEI | Vessels shall be deemed to be in sight
- Internet: bennett@triumf.ca | of one another only when one can be
- Packet: ve7cei@ve7kit.#vanc.bc.ca | observed visually from the other
- TRIUMF, Vancouver, B.C., Canada | ColRegs 3(k)
- GPS and NMEA info and programs: ftp://sundae.triumf.ca/pub/peter/index.html
-
-
-
-
-
-
-
-